home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-07-08 | 2.3 KB | 93 lines |
- # Makefile for GNU miscfiles
- # Copyright (C) 1996 Free Software Foundation, Inc.
- # Written by Michael I. Bushnell, p/BSG.
- #
- # This file is part of the GNU miscfiles.
- #
- # GNU miscfiles are free software; you can redistribute it and/or
- # modify it under the terms of the GNU General Public License as
- # published by the Free Software Foundation; either version 2, or (at
- # your option) any later version.
- #
- # GNU miscfiles is distributed in the hope that it will be useful, but
- # WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- # General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with this program; if not, write to the Free Software
- # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA.
-
- SHELL=/bin/sh
-
- srcdir = @srcdir@
-
- INSTALL=@INSTALL@
- INSTALL_DATA=@INSTALL_DATA@
-
- prefix=@prefix@
-
- datadir=$(prefix)/share
-
- MKINSTALLDIRS = $(srcdir)/mkinstalldirs
-
- version=1.0
-
- dictfiles=connectives web2 web2a propernames
- miscfiles=airport ascii birthtoken inter.phone na.phone operator zipcodes
-
- distfiles=$(dictfiles) $(miscfiles) dict-README Makefile.in configure \
- configure.in mkinstalldirs install-sh ORIGIN README INSTALL \
- NEWS
-
- all:
-
- install: installdirs
- for i in $(dictfiles); do \
- $(INSTALL_DATA) $(srcdir)/$$i $(datadir)/dict/$$i ; \
- done
- $(INSTALL_DATA) $(srcdir)/dict-README $(datadir)/dict/README
- rm -f $(datadir)/dict/words
- ln $(datadir)/dict/web2 $(datadir)/dict/words
- for i in $(miscfiles); do \
- $(INSTALL_DATA) $(srcdir)/$$i $(datadir)/misc/$$i ; \
- done
-
- install-strip: install
-
- uninstall:
- for i in $(dictfiles); do \
- rm -f $(datadir)/dict/$$i ; \
- done
- rm -f $(datadir)/dict/README $(datadir)/dict/words
- for i in $(miscfiles); do \
- rm -f $(datadir)/misc/$$i ; \
- done
-
- installdirs:
- $(MKINSTALLDIRS) $(datadir)/dict $(datadir)/misc
-
- Makefile: Makefile.in config.status
- $(SHELL) config.status
-
- config.status: configure
- $(srcdir)/configure --no-create
-
- dist: $(distfiles)
- rm -rf miscfiles-$(version)
- mkdir miscfiles-$(version)
- ln $(distfiles) miscfiles-$(version)
- tar -cho --gzip -f miscfiles-$(version).tar.gz miscfiles-$(version)
- rm -rf miscfiles-$(version)
-
- mostlyclean:
- clean:
- TAGS:
- info:
- dvi:
- check:
-
- maintainer-clean distclean:
- rm -f Makefile config.status
-
-